Xceed DataGrid for Silverlight Documentation
DataGridPath Constructor(Object[])


An array of objects that make up the path to an element.
Initializes a new instance of the DataGridPath class specifying the elements that make up the path to the element.
Syntax
'Declaration
 
Public Function New( _
   ByVal path() As Object _
)
'Usage
 
Dim path() As Object
 
Dim instance As New DataGridPath(path)
public DataGridPath( 
   object[] path
)

Parameters

path
An array of objects that make up the path to an element.
Remarks

A datagrid path's DataPath property exposes, as a generic list, the elements that make up an element's path. Each element that is part of a data path, with the exception of groups, is represented by the actual object instance. Groups are represented by their value. For example, if a group is represented by its value (e.g., "Canada") and a data item is represented by the actual object instance (e.g., OrderDataItem), the resulting data path for a data item that is located in a "Canada" group would be {"Canada", OrderDataItem}.

The element that is represented by the datagrid path is always the last element in the path.

Requirements

Target Platforms: Windows 7, Windows Vista, Windows XP SP3, Windows Server 2008 family

See Also

Reference

DataGridPath Class
DataGridPath Members
Overload List

Send Feedback